2025 iThome 鐵人賽
分享至
今天是練習cpe的Back to High School Physics題目
#include <bits/stdc++.h> using namespace std; int main() { int t ,v; while(cin >> v >> t) { cout << 2 * t * v <<endl; } return 0; }
IT邦幫忙